/* slide 走马灯  */
.el-carousel {
    overflow: hidden;
}

.el-carousel__arrow {
    border-radius: 0;
    background-color: transparent;
    font-size: 34px;
    font-weight: bold;
    color: #4f5050;
}

.el-carousel__arrow i {
    font-weight: bold;
}

.el-carousel__arrow:hover {
    background-color: transparent;
}

.el-carousel__arrow--right {
    right: 375px;
}

.el-carousel__indicators {
    left: 750px;
}

.el-carousel__indicator.is-active button {
    background-color: #0365b8;
}

.el-carousel__button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 0 2px #3c3c3c;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #ab3d2e;
    color: #fff;
}

.el-pagination.is-background .el-pager li {
    margin: 0 5px;
    background-color: #f0f0f0;
    color: #ab3d2e;
    border: 1px solid #cfcfcf;
    min-width: 30px;
    border-radius: 2px;
}

.el-pagination.is-background .el-pager li:not(.disabled).active:hover {
    color: #fff;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: #ab3d2e;
}

/*弹窗公共样式*/
.el-dialog__header {
    padding: 0;
    border-bottom: 2px solid #ab3d2e;
    background-color: #f3f1f2;
}

.el-dialog__header .el-dialog__title {
    display: inline-block;
    padding: 10px 20px 8px;
    line-height: 24px;
    font-size: 18px;
    color: #ffffff;
    background-color: #ab3d2e;
}

.el-dialog__header .el-dialog__headerbtn {
    top: 14px;
    right: 14px;
}

.el-dialog__footer {
    border-top: 1px solid #e5e5e5;
    padding: 10px 20px;
    text-align: right;
    box-sizing: border-box;
    background-color: #ffffff;
}

.el-dialog__footer .el-button {
    width: 100px;
}

.el-dialog__footer .el-button--danger {
    color: #fff;
    background-color: #e22323;
    border-color: #e22323;
}

.el-dialog__footer .el-button--danger:hover {
    background-color: #e24340;
    border-color: #e22323;
}

.el-dialog__footer .el-button--info {
    color: #1a1a1a;
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

.el-dialog__footer .el-button--info:hover {
    background-color: #f8f8f8;
    border-color: #f0f0f0;
}

/*输入框公共样式*/

.el-input__inner, .el-textarea__inner {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.el-input__inner:focus,
.el-textarea__inner:focus {
    box-shadow: 0 0 5px rgba(64, 158, 255, 0.3);
}

/*table 样式覆盖*/
.el-table th {
    background-color: #efd1d1;
}

.el-table th > .cell {
    color: #000;
    font-weight: bold;
}

/* 适老模式 */
.oldModel .el-carousel__button{width: 20px!important;height: 20px!important;}